* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    

}

:root {
    --primary: #5141c8;
    --primary-dark: #4433b7 ;
    --text: #20213b;
    --muted: #5f6175;
    --border: #dddde8;
    --green: #5a9b70;
    --bg: #ffffff;
    
            --gradient:
        linear-gradient(
            135deg,
            #7c3aed,
            #2563eb
        );  
    
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: var(--text);
}


/* ================= HEADER ================= */

.navbar{
width: 100%;
height: 82px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 4%;
border-bottom:1px solid #ffffff;
background: #ffffff;
position: sticky;
top: 0;
z-index: 1000;
}

.logo{
     width: 150px;
    align-items: center;
    gap: 8px;
    color: var(--primary);
  }
/* LOGO */

.logo img{
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);
    width: 150px;
    height: auto;
    display: block;
}



/* NAVIGATION */

.get-started-container {
    display: flex;
    align-items: center;
    gap: 25px;
    
}

.Home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color:#5141c8;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    
}

.Home-link i {
    font-size: 18px;
    color:#5141c8;
}
.Home-link i:hover {
color: #000000;
}


.Home-link:hover {
    color:#000000;
    
    
}

.get-started-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
     background: var(--gradient);
    color: white;
    font-size: 17px;
    cursor: pointer;
     text-decoration: none !important;
}

.get-started-btn:hover {

color:#5141c8;
background: #ffffff;
border: #5141c8 solid 1px;


}




/* =========================================================
   LEFT CONTENT
========================================================= */


.page-container {
   width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    padding: 28px 30px 40px;
}

.left-content {
    padding: 10px;
    box-sizing: border-box;
    min-width: 0;
}

.right-card {
    padding: 10px;
    box-sizing: border-box;
    
    position: relative;
    top: 200px;
    
}


/* =========================================================
   PROFILE HEADER
========================================================= */


.profile-header {

    align-items: flex-start;

    gap: 1px;

    margin-bottom: 28px;
    margin: 50px;

}


.profile-logo {

    width: 128px;
    height: 128px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

    background: #10132d;

    box-shadow: 0 5px 20px rgba(0,0,0,.12);
}



.profile-title {
display: flex;
    align-items: center;

    gap: 20px;

    margin-bottom: 28px;
   

}


.profile-title h1 {

    font-size: 29px;

    line-height: 1.25;

    font-weight: 800;

    color: #101d34;

    margin-bottom: 9px;

   

    margin-bottom: 12px;

}


.profile-title h1 span {

    font-weight: 800;

}


/* =========================================================
   VERIFIED
========================================================= */

.verified {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: #dff8e9;

    color: #22824d;

    padding: 6px 13px;

    border-radius: 20px;

    font-size: 13px;

    font-weight: 500;

}


.verified i {

    font-size: 14px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.description {

    color: #506079;

    font-size: 17px;

    line-height: 1.65;

}


.description p {

    margin-bottom: 2px;

}


.description strong {

    color: #465873;

    font-weight: 700;

}


.description h2 {

    color: #43536b;

    font-size: 18px;

    line-height: 1.4;

    margin-top: 2px;

    margin-bottom: 0;

}


/* =========================================================
   STATISTICS
========================================================= */

.statistics {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    margin-top: 30px;

    margin-bottom: 34px;

}


.stat-box {

    height: 112px;

    background: #ffffff;

    border-radius: 11px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}


.stat-box i {

    color: #5141c8 ;

    font-size: 23px;

    margin-bottom: 7px;

}


.counter {

    color: #5141c8 ;

    font-size: 18px;

    line-height: 1;

    font-weight: 800;

}


.stat-box small {

    color: #4c5870;

    font-size: 13px;

    margin-top: 7px;

}


/* =========================================================
   PANEL FEATURES
========================================================= */

.panel-features h2 {

    color: #101d34;

    font-size: 23px;

    margin-bottom: 23px;

}


.features-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
    

}


.feature {

    min-height: 56px;

    background: #faf4ff;

    border-radius: 8px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 18px;

    color: #273750;

    font-size: 15px;

}


.feature i {

    color: #9a31ff;

    font-size: 15px;

}


.feature:last-child {

    grid-column: 1 / 2;

}


/* =========================================================
   RIGHT CARD
========================================================= */

.right-card {
   
 min-height: 480px;
    
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    padding: 25px 32px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.10);

       padding: 10px;
    box-sizing: border-box;
    
    position: relative;
    top: 200px;
}



.right-card h2 {

    color: #101d34;

    font-size: 24px;

    margin-bottom: 24px;

}


/* =========================================================
   CHOOSE BOX
========================================================= */

.choose-box {

    background: #ffffff;

    border-radius: 12px;

    padding: 27px 24px;

    margin-bottom: 24px;

}


.choose-box h3 {

    color: #17243b;

    font-size: 17px;

    margin-bottom: 22px;

}


.choose-item {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;

    color: #263550;

    font-size: 15px;

}


.choose-item:last-child {

    margin-bottom: 0;

}


.choose-item i {

    width: 25px;

    color: #5141c8 ;

    font-size: 18px;

}


/* =========================================================
   QUOTE BUTTON
========================================================= */

.quote-button {

    width: 100%;

    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

 background: var(--gradient);

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 15px;

    font-weight: 500;

    transition: all 0.25s ease;

}


.quote-button:hover {
    color:  #5141c8;

    background: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 7px 15px rgba(23, 168, 75, 0.22);
    border:  #5141c8 solid 1px;

}


/* =========================================================
   DESCRIPTION UNDER BUTTON
========================================================= */

.quote-description {

    text-align: center;

    color: #607087;

    font-size: 14px;

    line-height: 1.6;

    margin-top: 25px;

    padding: 0 10px;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 14px;

    bottom: 13px;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #20cf63;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 28px;

    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);

    z-index: 9999;

    transition: transform 0.25s ease;

}


.whatsapp-float:hover {

    transform: scale(1.08);

}


/* =========================================================
   NOTIFICATION
========================================================= */

.notification {

    position: absolute;

    top: -5px;

    right: -5px;

    width: 21px;

    height: 21px;

    border-radius: 50%;

    background: #ef3d43;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    font-weight: 600;

    border: 1px solid #ffffff;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .page-container {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .right-card {

        min-height: auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .page-container {

        padding: 20px 16px 35px;

        gap: 25px;

    }


    .profile-header {

        gap: 13px;

    }


    .profile-logo {

        width: 80px;

        height: 80px;

    }


    .profile-title h1 {

        font-size: 21px;

    }


    .verified {

        font-size: 11px;

        padding: 5px 9px;

    }


    .description {

        font-size: 15px;

        line-height: 1.6;

    }


    .description h2 {

        font-size: 17px;

    }


    .statistics {

        gap: 8px;

        margin-top: 25px;

    }


    .stat-box {

        height: 100px;

    }


    .stat-box i {

        font-size: 20px;

    }


    .counter {

        font-size: 17px;

    }


    .stat-box small {

        font-size: 11px;

    }


    .features-grid {

        grid-template-columns: 1fr;

    }


    .feature:last-child {

        grid-column: auto;

    }


    .right-card {

        padding: 23px 20px;

    }


    .right-card h2 {

        font-size: 22px;

    }


    .choose-box {

        padding: 22px 18px;

    }


    .whatsapp-float {

        width: 52px;

        height: 52px;

        font-size: 25px;

        right: 12px;

        bottom: 12px;

    }

}